home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / exec / devices.inc < prev    next >
Text File  |  1998-06-24  |  264b  |  18 lines

  1. include "inc/exec/libraries.inc";
  2. include "inc/exec/ports.inc";
  3.  
  4. struct Device is
  5.   dd_Library:Library;
  6. ;
  7.  
  8. struct Unit is
  9.   unit_MsgPort:MsgPort;
  10.   unit_flags:ubyte;
  11.   unit_pad:ubyte;
  12.   unit_OpenCnt:uword;
  13. ;
  14.  
  15. def UNITF_ACTIVE = (1<<0);
  16. def UNITF_INTASK = (1<<1);
  17.  
  18.